body {
            overflow-x: hidden;
            background-color: #fcfcfc;
        }
       

 .logo-text, .main-title, h1, h2 ,a , h4 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}
p{
 font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR TRANSPARENT TO SOLID */
 .navbar-brand img {
            height: 120px;
        }
/* NAVBAR DEFAULT (TRANSPARENT) */
.navbar {
    background: rgba(255, 255, 255, 0);   /* شفاف */
    backdrop-filter: blur(0px);
    box-shadow: none;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease;     
    position: fixed;
    width: 100%;
    z-index: 999;

}

.navbar a {
    color: white !important;
    transition: 0.3s;
    font-size: 25px;
    font-weight: 700;
}

/* بعد السكروول */
.navbar.scrolled a {
    color: #5d3a1a !important; 
}
.navbar.scrolled img {
            height: 60px;
        }

/* NAVBAR بعد الـ SCROLL */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #fcb242;
    
}

        .nav-link {
            font-size: 18px;
            margin-left: 60px;
            font-weight: 600;
           
        }
        .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

/* ضبط اللوجو */
.logo-img {
    height: 120px;
    transition: 0.3s ease-in-out;
}

/*  */
.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* لما الـ navbar يحصل له scroll */
.navbar.scrolled .logo-subtitle {
    color: #5d3a1a !important;   /* نفس لون منيو بعد السكروول */
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* لما اللوجو يصغر */
.navbar.scrolled .logo-img {
    height: 60px;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
  
.contact-hero {
    height: 55vh;
    background: url('../Images/About\ 4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-title {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.3s forwards;
}



/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: #f8f4ec;
}

/* FORM BOX */
.contact-box {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-box h2 {
    margin-bottom: 25px;
    color: #5d3a1a;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-box button {
    width: 100%;
    padding: 14px;
    background: #fcb242;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
    color: #fff;
}

.contact-box button:hover {
    background: #5d3a1a;
    color: white;
}

/* INFO */
.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 32px;
    color: #5d3a1a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    color: #7b6a57;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.contact-info li {
    font-size: 17px;
    margin-bottom: 12px;
}

/* FOOTER */
footer {
    padding: 40px 0;
    background: linear-gradient(90deg,#5d3a1a,#7d5225);
    border-top: 3px solid #fcb242;
    text-align: center;
    color: white;
}
a {
    text-decoration: none !important;
}

/* COMPANY INFO BOX */
.company-info-box {
    padding: 20px;
}

.company-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    transition: 0.3s;
}

.company-card:hover {
    transform: translateY(-6px);
}

.company-card h3 {
    font-size: 22px;
    color: #5d3a1a;
    margin-bottom: 15px;
}

.company-card p {
    font-size: 16px;
    color: #7b6a57;
    margin-bottom: 15px;
    line-height: 1.7;
}

.company-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-card li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}
/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 768px) {

    /* NAVBAR SPACING */
    .navbar a {
        font-size: 18px !important;
        margin-left: 0px !important;
    }

    .navbar-nav {
        text-align: center;
    }

    .logo-img {
        height: 80px !important;
    }

    .navbar.scrolled .logo-img {
        height: 50px !important;
    }

    /* HERO */
    .hero-title {
        font-size: 38px !important;
        letter-spacing: 1px;
        text-align: center;
    }

    .contact-hero {
        height: 40vh;
    }

    /* CONTACT FORM */
    .contact-box {
        padding: 25px !important;
    }

    .contact-box input,
    .contact-box textarea {
        font-size: 14px !important;
        padding: 12px !important;
    }

    .contact-box button {
        font-size: 16px !important;
        padding: 12px !important;
    }

    /* COMPANY CARDS */
    .company-card {
        padding: 20px !important;
    }

    .company-card h3 {
        font-size: 18px !important;
    }

    .company-card li {
        font-size: 14px !important;
    }

    /* GRID ORDER */
    .contact-section .row {
        flex-direction: column-reverse;
    }
}

/* ===========================
   SMALL PHONES (375px - 480px)
   =========================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px !important;
    }

    .contact-hero {
        height: 32vh;
    }

    .contact-box {
        padding: 20px !important;
    }
}

